home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 455 b | 33 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- #
- # Makefile for flip demo
- #
-
- TARGETS = flip
-
- CFILES = flip.c light.c flipobj.c swirl.c hash.c
- OBJECTS = flip.o light.o flipobj.o swirl.o hash.o
- HFILES = flip.h light.h hash.h
-
-
- LLDLIBS = ../libdemo/libdemo.a -lgl -lm
- LCOPTS = -float
-
- LCINCS = -I../libdemo
-
- default all: $(TARGETS)
-
- install:
- $(MAKE) $(TARGETS)
-
-
- include $(COMMONRULES)
-
-
- ${TARGETS}: ${OBJECTS}
- ${CCF} ${OBJECTS} $(LDFLAGS) -o $@
-
-